/*
* Created on 04.01.2004
*/
package observations;
/**
* <code>DomainInterface</code> Is a simple interface meaning every object in
* this domain must have a unique name.
*
* @author Sascha Hemminger
* @version 1.0 2004-08-10
*/
public interface DomainInterface {
/**
* Gives the name of a particular object from the domain.
*
* @return name of a particular DomainObject
*/
public abstract String getName();
}
|